home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zfbcp.c < prev    next >
C/C++ Source or Header  |  1996-03-03  |  3KB  |  87 lines

  1. /* Copyright (C) 1994, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zfbcp.c */
  20. /* (T)BCP filter creation */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "gsstruct.h"
  26. #include "ialloc.h"
  27. #include "stream.h"
  28. #include "strimpl.h"
  29. #include "sfilter.h"
  30. #include "ifilter.h"
  31.  
  32. /* Define null handlers for the BCP out-of-band signals. */
  33. private int
  34. no_bcp_signal_interrupt(stream_state *st)
  35. {    return 0;
  36. }
  37. private int
  38. no_bcp_request_status(stream_state *st)
  39. {    return 0;
  40. }
  41.  
  42. /* <source> BCPEncode/filter <file> */
  43. /* <source> <dict_ignored> BCPEncode/filter <file> */
  44. private int
  45. zBCPE(os_ptr op)
  46. {    return filter_write_simple(op, &s_BCPE_template);
  47. }
  48.  
  49. /* <target> BCPDecode/filter <file> */
  50. /* <target> <dict_ignored> BCPDecode/filter <file> */
  51. private int
  52. zBCPD(os_ptr op)
  53. {    stream_BCPD_state state;
  54.     state.signal_interrupt = no_bcp_signal_interrupt;
  55.     state.request_status = no_bcp_request_status;
  56.     return filter_read(op, (r_has_type(op, t_dictionary) ? 1 : 0),
  57.                &s_BCPD_template, (stream_state *)&state, 0);
  58. }
  59.  
  60. /* <source> TBCPEncode/filter <file> */
  61. /* <source> <dict_ignored> TBCPEncode/filter <file> */
  62. private int
  63. zTBCPE(os_ptr op)
  64. {    return filter_write_simple(op, &s_TBCPE_template);
  65. }
  66.  
  67. /* <target> TBCPDecode/filter <file> */
  68. /* <target> <dict_ignored> TBCPDecode/filter <file> */
  69. private int
  70. zTBCPD(os_ptr op)
  71. {    stream_BCPD_state state;
  72.     state.signal_interrupt = no_bcp_signal_interrupt;
  73.     state.request_status = no_bcp_request_status;
  74.     return filter_read(op, (r_has_type(op, t_dictionary) ? 1 : 0),
  75.                &s_TBCPD_template, (stream_state *)&state, 0);
  76. }
  77.  
  78. /* ------ Initialization procedure ------ */
  79.  
  80. BEGIN_OP_DEFS(zfbcp_op_defs) {
  81.         op_def_begin_filter(),
  82.     {"1BCPEncode", zBCPE},
  83.     {"1BCPDecode", zBCPD},
  84.     {"1TBCPEncode", zTBCPE},
  85.     {"1TBCPDecode", zTBCPD},
  86. END_OP_DEFS(0) }
  87.